
/** ALLGEMEIN/FARBDEFINITIONEN */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --blue:#002491;
  --blue-d:#050951;
  --blue-l:#dce8ff;
  --blue-pale:#f0f5ff;
  --ink:#08152e;
  --ink2:#233358;
  --white:#ffffff;
  --rule:rgba(19,64,200,0.12);
  --syne:'Syne',sans-serif;
  --inter:'Inter',sans-serif;
}
html{font-size:16px}
body{
  font-family:var(--inter);
  color:var(--ink);
  background:var(--white);
  overflow-x:hidden;
  line-height:1.65
}

/** NAV-MENÜ */
nav{
  position:sticky;
  top:0;
  z-index:200;
  background:rgba(255,255,255,0.95);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--rule)
}
.nav-inner{
  max-width:1280px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:66px;
  padding:0 48px
}
.logo{
  display:flex;
  align-items:center;
  gap:9px;
}
.logo img {
  max-height: 40px;
}
.nav-links{
  display:flex;
  gap:32px;
  list-style:none
}
.nav-links a{
  text-decoration:none;
  color:var(--ink2);
  font-size:14px;
  opacity:0.6;
  transition:opacity .2s
}
.nav-links a:hover{
  opacity:1
}
.nav-cta{
  border:1.5px solid var(--blue);
  color:var(--blue);
  background:transparent;
  padding:9px 22px;
  border-radius:7px;
  font-size:14px;
  font-weight:500;
  cursor:pointer;
  transition:background .2s,color .2s;
  font-family:var(--inter)
}
.nav-cta:hover{
  background:var(--blue);
  color:white
}

/** HERO/LANDESEITE */
.hero {
  min-height: 100vh;
}
.hero-wrap{
  position:relative;
  overflow:hidden;
  background:var(--white);
  min-height:88vh;
  display:flex;
  flex-direction:column;
  justify-content:center
}
.hero-dots{
  position:absolute;
  inset:0;
  background-image:radial-gradient(circle,rgba(19,64,200,0.16) 1.2px,transparent 1.2px);
  background-size:28px 28px;z-index:0
}

.hero-photo-zone{
  position:absolute;
  top:0;right:0;
  width:45%;height:100%;
  overflow:hidden;z-index:2;
}
.hero-photo-inner{position:relative;width:100%;height:100%}
.hero-photo{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:cover;object-position:center;z-index:1;
}
.hero-photo-zone::after{
  content:'';position:absolute;inset:0;z-index:3;pointer-events:none;
  background:linear-gradient(to right,rgba(255,255,255,1) 0%,rgba(255,255,255,0.8) 12%,rgba(255,255,255,0) 52%);
}

.hero-content{
  position:relative;
  z-index:10;
  max-width:1280px
  ;margin:0 auto;
  width:100%;
}
.hero-tag{
  display:inline-flex;
  align-items:center;
  gap:9px;
  background:var(--blue-pale);
  border:1px solid rgba(19,64,200,0.2);
  border-radius:100px;
  padding:6px 16px;
  font-size:12px;
  color:var(--blue);font-weight:600;
  margin-bottom:28px;
  letter-spacing:0.07em;
  text-transform:uppercase
}
.hero-tag-dot{
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--blue);
  display:inline-block
}
h1{
  font-family:var(--syne);
  font-size:clamp(42px,5.5vw,68px);
  line-height:1.05;color:var(--ink);
  font-weight:700;
  letter-spacing:-0.035em;
  margin-bottom:26px;
  max-width:580px
}
h1 em{
  font-style:italic;
  color:var(--blue)
}
.hero-sub{
  font-size:17px;
  color:var(--ink2);
  opacity:0.6;
  line-height:1.8;
  max-width:460px;
  margin-bottom:40px;
  font-weight:300
}
.hero-btns{
  display:flex;
  gap:14px;
  align-items:center
}
.btn-p{
  background:var(--blue);color:white;
  border:none;
  padding:15px 32px;border-radius:8px;
  font-size:16px;
  font-weight:500;
  cursor:pointer;
  font-family:var(--inter);
  transition:background .2s
}
.btn-p:hover{background:var(--blue-d)}
.btn-white{
  background:white;
  color:var(--ink2);border:1.5px solid rgba(8,21,46,0.15);
  padding:15px 26px;
  border-radius:8px;font-size:16px;
  cursor:pointer;
  font-family:var(--inter);display:flex;
  align-items:center;
  gap:8px;transition:border-color .2s
}
.btn-white:hover{border-color:rgba(8,21,46,0.35)}

/* Durchlaufen von Stichworten unter dem Hero */
.ticker {
  overflow: hidden;
  background: var(--blue-d);
  padding: 10px 0;
  white-space: nowrap;
}

.ticker-track {
  display: inline-block;
  animation: ticker-scroll 60s linear infinite;
}

.ticker-track span {
  font-size: 13px;
  font-weight: 600;
  color: white;
  font-family: var(--syne);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0 18px;
}

.ticker-diamond {
  color: rgba(255, 255, 255, 0.4);
  padding: 0 !important;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Positionierung der Karten auf der Landeseite für Teamviewer etc */
.hero-karten {
  position: absolute;
  right: 48px;
  bottom: 52px;
  z-index: 11;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* einzelne "Karte"*/
.hero-karte {
  background: white;
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 2px 24px rgba(19, 64, 200, 0.08);
}
.hb-icon{width:42px;height:42px;border-radius:10px;background:var(--blue-pale);display:flex;align-items:center;justify-content:center;color:var(--blue);font-size:18px;flex-shrink:0}
.hb-title{font-size:14px;font-weight:500;color:var(--ink)}
.hb-sub{font-size:12px;color:var(--ink2);opacity:0.5;margin-top:2px}

a.hero-karte {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: box-shadow .2s, transform .2s;
}
a.hero-karte:hover {
  box-shadow: 0 4px 32px rgba(19, 64, 200, 0.15);
  transform: translateY(-2px);
}

/* */
.placeholder {
  background:var(--blue-d);
  padding:40px 48px
}
.placeholder-inner{
  max-width:1280px;
  margin:0 auto;
  align-items:center;
  justify-content:space-between;
  gap:24px
}
.placeholder h3{
  font-family:var(--syne);
  font-size:21px;
  color:white;
  font-weight:700;
  margin-bottom:7px
}
.placeholder p{
  font-size:15px;
  color:rgba(255, 255, 255, 0.678);
  max-width:580px;
  line-height:1.7
}
.btn-pc{
  background:white;color:var(--ink);
  padding:12px 26px;
  border-radius:8px;
  border:none;
  font-size:14px;
  font-weight:600;
  cursor:pointer;
  flex-shrink:0;
  font-family:var(--inter)
}

/* SERVICES */

.sec-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  margin-bottom:56px;gap:32px
}
.eyebrow{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:0.11em;
  color:var(--blue);
  font-weight:600;
  margin-bottom:12px;
  display:flex;
  align-items:center;
  gap:8px
}
.eyebrow-dash{
  width:22px;
  height:1.5px;
  background:var(--blue);
  display:inline-block
}
h2{
  font-family:var(--syne);
  font-size:clamp(28px,3.5vw,42px);
  line-height:1.1;
  color:var(--ink);
  font-weight:700;
  letter-spacing:-0.025em
}
.sec-sub{
  font-size:16px;
  color:var(--ink2);
  opacity:0.55;
  line-height:1.75;
  max-width:400px;
  font-weight:300
}

/* SERVICES */

.services {
  padding: 100px 48px;
  background: var(--white);
  position: relative;
}

.services-inner { 
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--rule);
  border-radius: 18px;
  overflow: hidden;
}
.svc-card {
  padding: 28px 28px 24px;
  background: var(--blue-pale);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
  transition: background .22s;
}
.svc-card:nth-child(3), .svc-card:nth-child(6) { border-right: none; }
.svc-card:nth-child(4), .svc-card:nth-child(5), .svc-card:nth-child(6) { border-bottom: none; }
.svc-card:hover { background: var(--blue-d); }
.svc-card:hover .svc-title { color: white; }
.svc-card:hover .svc-desc { color: rgba(255,255,255,0.8); opacity: 1; }
.svc-card:hover .svc-details summary { color: rgba(255,255,255,0.9); }
.svc-card:hover .svc-expand-body { color: rgba(255,255,255,0.85); opacity: 1; }

.svc-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: white;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  font-size: 17px;
  margin-bottom: 14px;
  transition: background .22s, color .22s;
}
.svc-title {
  font-family: var(--syne);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  transition: color .22s;
  line-height: 1.3;
}
.svc-desc {
  font-size: 15px;
  color: var(--ink2);
  opacity: 0.6;
  line-height: 1.7;
  transition: color .22s, opacity .22s;
}
.svc-details { margin-top: 10px; }
.svc-details summary {
  list-style: none;
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  user-select: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.svc-expand-body {
  margin-top: 10px;
  font-size: 14.5px;
  color: var(--ink2);
  line-height: 1.7;
  opacity: 0.6;
}

.svc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}

.svc-footer p {
  font-size: 15px;
  color: var(--ink2);
  opacity: 0.6;
  line-height: 1.75;
  max-width: 560px;
  margin: 0;
}

.svc-footer .btn-p {
  flex-shrink: 0;
}

/* PEGACARD/-BASIC */
.pegacard{
  padding:88px 48px;
  padding-bottom: 0px !important;
  background:var(--blue-pale);
  position:relative;
  overflow:hidden
}
.pegacard::before{
  content:'';
  position:absolute;
  inset:0;
  /*background-image:radial-gradient(circle,rgba(19,64,200,0.1) 1px,transparent 1px);*/
  background-size:28px 28px
}
.pegacard-inner{
  max-width:1280px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
  position:relative;
  z-index:1;
  padding-top: 0px !important;
  padding-bottom: 88px !important;
}
.pegacard-photo{
  height:420px;
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--rule)
}
.pegacard-photo img{
  width:100%;
  height:100%;
  object-fit:cover
}

.pegacard--flipped .pegacard-inner {
  grid-template-columns: 1fr 1fr;
}

.pegacard--flipped .pegacard-inner > div:first-child {
  order: 1;
}

.pegacard--flipped .pegacard-photo {
  order: 2;
}

.pegacard-sub {
  font-size: 16px;
  color: var(--ink2);
  margin-top: -8px;
  font-style: italic;
}

.highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.hl-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  background: white;
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  font-family: var(--syne);
  white-space: nowrap;
}
.hl-tag i {
  color: var(--blue);
  font-size: 13px;
}

/* CTA */
.cta{
  padding:88px 48px;
  background:var(--white);
  text-align:center;
  position:relative;
  overflow:hidden
}
.cta::before{
  content:'';
  position:absolute;
  inset:0;
  background-image:radial-gradient(circle,rgba(19,64,200,0.1) 1px,transparent 1px);
  background-size:28px 28px
}
.cta-inner{
  position:relative;
  z-index:1;max-width:600px;
  margin:0 auto
}
.cta-inner h2{
  margin-bottom:16px
}
.cta-inner p{
  font-size:17px;color:var(--ink2);
  opacity:0.6;line-height:1.75;
  font-weight:300;
  margin-bottom:36px
}
.cta-row{
  display:flex;
  gap:14px;
  justify-content:center
}
.btn-cta{
  background:var(--blue);
  color:white;
  border:none;
  padding:16px 36px;
  border-radius:8px;
  font-size:15px;
  font-weight:500;
  cursor:pointer;
  font-family:var(--inter)
}
.btn-tel{
  background:white;
  color:var(--ink);
  border:1.5px solid var(--rule);
  padding:16px 28px;
  border-radius:8px;
  font-size:15px;
  cursor:pointer;
  font-family:var(--inter);
  display:flex;
  align-items:center;
  gap:9px
}

/** PARTNERLOGOS */
.partner-logos{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:24px;
  align-items:center;
  padding: 20px;
}

.partner-logo{
  background:#fbfcfe;
  padding:26px;
  min-height:120px;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.3s;
}

.partner-logo:hover{
  transform:translateY(-4px);
  border-color:#bfd0ff;
  box-shadow:0 10px 30px rgba(0,0,0,.04);
}

.partner-logo img{
  max-width:140px;
  width:100%;
  height:auto;
  object-fit:contain;
  opacity:.9;
}

@media(max-width:1100px){
  .partner-logos{
    grid-template-columns:repeat(3,1fr);
  }

}

@media(max-width:700px){
  .partner-logos{
    grid-template-columns:repeat(2,1fr);
  }

}

/* FOOTER */
footer{
  background:var(--ink);
  padding:36px 48px
}
.foot-inner{
  max-width:1280px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:16px
}
.foot-logo{
  font-family:var(--syne);
  font-size:17px;
  color:rgba(255,255,255,0.7);
  font-weight:700;
  margin-bottom:4px
}
.foot-info{
  font-size:13.5px;
  color:rgba(255,255,255,0.3);
  line-height:1.8
}
.foot-info a{
  color:rgba(255,255,255,0.45);
  text-decoration:none
}
.foot-links{
  display:flex;
  gap:24px
}
.foot-links a{
  font-size:13px;
  color:rgba(255,255,255,0.3);
  text-decoration:none;
  transition:color .2s
}
.foot-links a:hover{
  color:rgba(255,255,255,0.7)
}

@keyframes fadeUp{
  from{
    opacity:0;transform:translateY(16px)
  }to{
    opacity:1;transform:translateY(0)
  }
}
.hero-content{animation:fadeUp .7s ease both}
.hero-badge{animation:fadeUp .7s .18s ease both}



/* PAGE HERO */
.loesungen-hero {
  padding: 100px 48px 80px;
  background: var(--blue-d);
  position: relative;
  overflow: hidden;
}
.loesungen-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}
.loesungen-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.493) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 60%);
  mask-image: linear-gradient(to left, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 60%);
  pointer-events: none;
}
.loesungen-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.loesungen-hero .eyebrow { color: rgba(255,255,255,0.55); }
.loesungen-hero .eyebrow-dash { background: rgba(255,255,255,0.4); }
.loesungen-hero h1 {
  font-family: var(--syne);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  max-width: 700px;
}
.loesungen-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  max-width: 680px;
  font-weight: 300;
}
.loesungen-nav {
  background: white;
  border-bottom: 1px solid var(--rule);
  padding: 0 48px;
  position: sticky !important;
  top: 66px;
  z-index: 99;
}

.loesungen-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
}

.loesungen-nav-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink2);
  white-space: nowrap;
  font-family: var(--syne);
}

.loesungen-nav-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.lnav-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 15px;
  border-radius: 999px;
  border: 1px solid var(--rule);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--syne);
  transition: background .18s, color .18s, border-color .18s;
  white-space: nowrap;
}

.lnav-pill i {
  color: var(--blue);
  font-size: 12px;
}

.lnav-pill:hover {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}

.lnav-pill:hover i {
  color: white;
}

.lnav-pill.active {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}

.lnav-pill.active i {
  color: white;
}

/* LÖSUNGEN SECTIONS */
.loesung {
  padding: 88px 48px;
  position: relative;
}
.loesung:nth-child(odd)  { background: var(--white); }
.loesung:nth-child(even) { background: var(--blue-pale); }

.loesung[id] {
  scroll-margin-top: 86px; 
}

.loesung-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.loesung:nth-child(even) .loesung-inner {
  direction: rtl;
}
.loesung:nth-child(even) .loesung-inner > * {
  direction: ltr;
}

/* IMAGE */
.loesung-img {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--rule);
  height: 380px;
  background: var(--blue-pale);
  position: relative;
}

.loesung-media .loesung-img {
  border-radius: 18px 18px 0 0;
}

.loesung-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.loesung-badge {
  position: absolute;
  top: 18px; left: 18px;
  background: var(--blue);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  font-family: var(--syne);
}
.loesung-badge--partner {
  background: white;
  color: var(--blue);
  border: 1px solid var(--rule);
}

/* CONTENT */
.loesung-content {}
.loesung-content .eyebrow { margin-bottom: 10px; }

.loesung-title {
  font-family: var(--syne);
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.loesung-tagline {
  font-size: 15px;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 20px;
  font-family: var(--syne);
}
.loesung-text {
  font-size: 15.5px;
  color: var(--ink2);
  opacity: 0.7;
  line-height: 1.8;
  margin-bottom: 28px;
}

/* HIGHLIGHTS */
.loesung-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  margin-top: 28px;
}
.loesung-hl {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 13px;
  background: white;
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  font-family: var(--syne);
  white-space: nowrap;
}
.loesung:nth-child(even) .loesung-hl {
  background: white;
}
.loesung-hl i { color: var(--blue); font-size: 12px; }

/* PARTNER LOGO */
.loesung-partner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
}
.loesung-partner-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink2);
  opacity: 0.45;
  font-weight: 600;
  white-space: nowrap;
}
.loesung-partner-logo {
  height: 100px;
  width: auto;
  transition: opacity .2s, filter .2s;
}
.loesung-partner-logo:hover {
  opacity: 1;
}

.loesung-partner-name {
  font-family: var(--syne);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink2);
  opacity: 0.5;
  letter-spacing: -0.01em;
}

/*  */
.loesungen-cta {
  padding: 72px 48px;
  background: var(--blue-d);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.loesungen-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
}
.loesungen-cta-inner {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.loesungen-cta h2 {
  color: white;
  margin-bottom: 16px;
}
.loesungen-cta p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 32px;
}
.btn-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: white;
  color: var(--blue);
  border: none;
  border-radius: 8px;
  font-family: var(--syne);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: opacity .2s;
}
.btn-light:hover { opacity: 0.88; }

.loesung-media {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-self: baseline;
}

.loesung-partner-box {
  background: var(--blue-d);
  border-radius: 0 0 18px 18px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  border-top: none;
}

.loesung-partner-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.918);
  font-weight: 600;
  margin-bottom: 4px;
  font-family: var(--syne);
}

.loesung-partner-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}